Computer Science Engineering (CSE) Exam  >  Computer Science Engineering (CSE) Questions  >  Consider the following C function.void conver... Start Learning for Free
Consider the following C function.
void convert(int n){ if(n<0)
printf(%d",n); 
else {
convert(n/2); printf ("%d",n%2);
}
}
Which one of the following will happen when the function convert is called with any positive integer n as argument?
  • a)
    It will not print anything and will not terminate
  • b)
    It will print the binary representation of n and terminate
  • c)
    It will print the binary representation of n in the reverse order and terminate 
  • d)
    It will print the binary representation of n but will not terminate
Correct answer is option 'A'. Can you explain this answer?
Verified Answer
Consider the following C function.void convert(int n){ if(n<0)print...
Suppose n is equal to 6
void convert(6){
if(n<0)


View all questions of this test
Most Upvoted Answer
Consider the following C function.void convert(int n){ if(n<0)print...
Explanation:

Function Logic:
- The given function 'convert' takes an integer 'n' as input.
- If 'n' is less than 0, it prints 'n' and returns.
- Otherwise, it recursively calls 'convert' with 'n/2' and prints the remainder of 'n/2'.
- This process continues until 'n' becomes 0.

When the function is called with a positive integer:
- When the function is called with a positive integer 'n', it will keep dividing 'n' by 2 and printing the remainders.
- Since the function does not have a base case for 'n=0', it will not terminate and keep calling itself recursively.

Result:
- As the function does not have a proper termination condition for positive integers, it will keep running indefinitely without printing the complete binary representation of 'n'.
Therefore, option 'a) It will not print anything and will not terminate' is the correct choice.
Explore Courses for Computer Science Engineering (CSE) exam

Similar Computer Science Engineering (CSE) Doubts

Top Courses for Computer Science Engineering (CSE)

Consider the following C function.void convert(int n){ if(n<0)printf(%d",n);else {convert(n/2); printf ("%d",n%2);}}Which one of the following will happen when the function convert is called with any positive integer n as argument?a)It will not print anything and will not terminateb)It will print the binary representation of n and terminatec)It will print the binary representation of n in the reverse order and terminated)It will print the binary representation of n but will not terminateCorrect answer is option 'A'. Can you explain this answer?
Question Description
Consider the following C function.void convert(int n){ if(n<0)printf(%d",n);else {convert(n/2); printf ("%d",n%2);}}Which one of the following will happen when the function convert is called with any positive integer n as argument?a)It will not print anything and will not terminateb)It will print the binary representation of n and terminatec)It will print the binary representation of n in the reverse order and terminated)It will print the binary representation of n but will not terminateCorrect answer is option 'A'. Can you explain this answer? for Computer Science Engineering (CSE) 2024 is part of Computer Science Engineering (CSE) preparation. The Question and answers have been prepared according to the Computer Science Engineering (CSE) exam syllabus. Information about Consider the following C function.void convert(int n){ if(n<0)printf(%d",n);else {convert(n/2); printf ("%d",n%2);}}Which one of the following will happen when the function convert is called with any positive integer n as argument?a)It will not print anything and will not terminateb)It will print the binary representation of n and terminatec)It will print the binary representation of n in the reverse order and terminated)It will print the binary representation of n but will not terminateCorrect answer is option 'A'. Can you explain this answer? covers all topics & solutions for Computer Science Engineering (CSE) 2024 Exam. Find important definitions, questions, meanings, examples, exercises and tests below for Consider the following C function.void convert(int n){ if(n<0)printf(%d",n);else {convert(n/2); printf ("%d",n%2);}}Which one of the following will happen when the function convert is called with any positive integer n as argument?a)It will not print anything and will not terminateb)It will print the binary representation of n and terminatec)It will print the binary representation of n in the reverse order and terminated)It will print the binary representation of n but will not terminateCorrect answer is option 'A'. Can you explain this answer?.
Solutions for Consider the following C function.void convert(int n){ if(n<0)printf(%d",n);else {convert(n/2); printf ("%d",n%2);}}Which one of the following will happen when the function convert is called with any positive integer n as argument?a)It will not print anything and will not terminateb)It will print the binary representation of n and terminatec)It will print the binary representation of n in the reverse order and terminated)It will print the binary representation of n but will not terminateCorrect answer is option 'A'. Can you explain this answer? in English & in Hindi are available as part of our courses for Computer Science Engineering (CSE). Download more important topics, notes, lectures and mock test series for Computer Science Engineering (CSE) Exam by signing up for free.
Here you can find the meaning of Consider the following C function.void convert(int n){ if(n<0)printf(%d",n);else {convert(n/2); printf ("%d",n%2);}}Which one of the following will happen when the function convert is called with any positive integer n as argument?a)It will not print anything and will not terminateb)It will print the binary representation of n and terminatec)It will print the binary representation of n in the reverse order and terminated)It will print the binary representation of n but will not terminateCorrect answer is option 'A'. Can you explain this answer? defined & explained in the simplest way possible. Besides giving the explanation of Consider the following C function.void convert(int n){ if(n<0)printf(%d",n);else {convert(n/2); printf ("%d",n%2);}}Which one of the following will happen when the function convert is called with any positive integer n as argument?a)It will not print anything and will not terminateb)It will print the binary representation of n and terminatec)It will print the binary representation of n in the reverse order and terminated)It will print the binary representation of n but will not terminateCorrect answer is option 'A'. Can you explain this answer?, a detailed solution for Consider the following C function.void convert(int n){ if(n<0)printf(%d",n);else {convert(n/2); printf ("%d",n%2);}}Which one of the following will happen when the function convert is called with any positive integer n as argument?a)It will not print anything and will not terminateb)It will print the binary representation of n and terminatec)It will print the binary representation of n in the reverse order and terminated)It will print the binary representation of n but will not terminateCorrect answer is option 'A'. Can you explain this answer? has been provided alongside types of Consider the following C function.void convert(int n){ if(n<0)printf(%d",n);else {convert(n/2); printf ("%d",n%2);}}Which one of the following will happen when the function convert is called with any positive integer n as argument?a)It will not print anything and will not terminateb)It will print the binary representation of n and terminatec)It will print the binary representation of n in the reverse order and terminated)It will print the binary representation of n but will not terminateCorrect answer is option 'A'. Can you explain this answer? theory, EduRev gives you an ample number of questions to practice Consider the following C function.void convert(int n){ if(n<0)printf(%d",n);else {convert(n/2); printf ("%d",n%2);}}Which one of the following will happen when the function convert is called with any positive integer n as argument?a)It will not print anything and will not terminateb)It will print the binary representation of n and terminatec)It will print the binary representation of n in the reverse order and terminated)It will print the binary representation of n but will not terminateCorrect answer is option 'A'. Can you explain this answer? tests, examples and also practice Computer Science Engineering (CSE) tests.
Explore Courses for Computer Science Engineering (CSE) exam

Top Courses for Computer Science Engineering (CSE)

Explore Courses
Signup for Free!
Signup to see your scores go up within 7 days! Learn & Practice with 1000+ FREE Notes, Videos & Tests.
10M+ students study on EduRev